// @description Adds an option to download and convert MyVideo videos.
// @namespace http://googlesystem.blogspot.com
// @include http://*.dailymotion.com/*_*
// @include http://dailymotion.com/*_*
// @version 0.3
// ==/UserScript==
(function () {
if (document.getElementById('convert-dailymotion-video')) return;
var dailymotion2mp3path ='http://www.video2mp3.net/?url='+encodeURIComponent(document.URL);
var div_embed = document.getElementsByClassName('dm_widget_videotools')[0];
if (div_embed) {
div_embed.innerHTML = div_embed.innerHTML + '<br /> <span id=\'convert-dailymotion-video\'> <a href=\''+dailymotion2mp3path+'\' title=\'Convert this video into MP3 and download it\' target=\'_blank\'><b>Convert & Download as MP3</b></a></span>';